home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-10-14 | 724 b | 29 lines | [TEXT/CWIE] |
- // =================================================================================
- // Copyright © 1996 Michael Schürig
- //
- // You may copy this file, rip it apart or use it in derivative work as long
- // as you don't change the original file and this message remains intact.
- // =================================================================================
-
- #include <ansi_prefix.mac.h>
- #include <iostream>
- #include <string>
- #include "UResourceParser.h"
-
- class TMPLParser : public UResourceParser {
-
- public:
-
- TMPLParser(const Handle inResH) throw();
- virtual ~TMPLParser() throw();
-
- virtual void Parse();
-
- void WriteParser(const string &inParserName, ostream &os = cout);
-
- protected:
-
- Str255 mTMPLName;
-
- };
-